home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d23 / syschk.arc / SYSCHK.DOC < prev    next >
Text File  |  1988-02-02  |  1KB  |  43 lines

  1. SYSCHK Version 1.0
  2. Copyright (c) 1988 Terratech.  All rights reserved.
  3.  
  4. This program was written to provide protection from the corruption of the
  5. system files, be it malicious or inadvertent.  However, it is specifically
  6. targeted against the viral form of trojan programs.  SYSCHK will detect the
  7. slightest change in any of the three system files.  I would recommend the
  8. following installation procedure:
  9.  
  10.     assuming that you boot drive is C
  11.  
  12.     enter SYSCHK C:
  13.     and you will see something similar to the following:
  14.  
  15.         C:\IO.SYS: checksum = 61278
  16.         C:\MSDOS.SYS: checksum = 24699
  17.         C:\COMMAND.COM: checksum = 30785
  18.  
  19.     edit the following lines into the beginning of AUTOEXEC.BAT,
  20.     using the checksums given for your system:
  21.  
  22.         SYSCHK 61278 24699 30785 C:
  23.         IF ERRORLEVEL 32 GOTO SYSCHKERR
  24.         IF ERRORLEVEL 16 GOTO FOPENERROR
  25.         IF ERRORLEVEL 2 GOTO CSUMERROR
  26.                 .
  27.                 .
  28.         :SYSCHKERROR
  29.                 .
  30.                 .
  31.         :FOPENERROR
  32.                 .
  33.                 .
  34.         :CSUMERROR
  35.                 .
  36.                 .
  37.  
  38. If you discover that any of your system files have been modified, you should
  39. IMMEDIATELY reboot with a known safe boot disk and run the DOS command SYS or
  40. its equivalent.
  41.  
  42. The command SYSCHK /? will provide additional information.
  43.